home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 April / SGI IRIX 6.5 Applications 2004 April.iso / dist / mozilla.idb / var / netscape / mozilla / components / inspector-cmdline.js.z / inspector-cmdline.js
Text File  |  2004-01-06  |  5KB  |  129 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is DOM Inspector.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Christopher A. Aillon <christopher@aillon.com>.
  18.  * Portions created by the Initial Developer are Copyright (C) 2003
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Christopher A. Aillon <christopher@aillon.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38.  
  39. const INSPECTOR_CMDLINE_CONTRACTID = "@mozilla.org/commandlinehandler/general-startup;1?type=inspector";
  40. const INSPECTOR_CMDLINE_CLSID      = Components.ID('{38293526-6b13-4d4f-a075-71939435b408}');
  41. const CATMAN_CONTRACTID            = "@mozilla.org/categorymanager;1";
  42. const nsICategoryManager           = Components.interfaces.nsICategoryManager;
  43. const nsICmdLineHandler            = Components.interfaces.nsICmdLineHandler;
  44. const nsIComponentRegistrar        = Components.interfaces.nsIComponentRegistrar;
  45.  
  46.  
  47. function InspectorCmdLineHandler() {}
  48. InspectorCmdLineHandler.prototype =
  49. {
  50.   commandLineArgument : "-inspector",
  51.   prefNameForStartup : "general.startup.inspector",
  52.   chromeUrlForTask : "chrome://inspector/content/inspector.xul",
  53.   helpText : "Start with the DOM Inspector.",
  54.   handlesArgs : true,
  55.   defaultArgs : "",
  56.   openWindowWithArgs : true
  57. };
  58.  
  59.  
  60. var InspectorCmdLineFactory =
  61. {
  62.   createInstance : function(outer, iid)
  63.   {
  64.     if (outer != null) {
  65.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  66.     }
  67.  
  68.     if (!iid.equals(nsICmdLineHandler) && !iid.equals(nsISupports)) {
  69.       throw Components.results.NS_ERROR_INVALID_ARG;
  70.     }
  71.  
  72.     return new InspectorCmdLineHandler();
  73.   }
  74. };
  75.  
  76.  
  77. var InspectorCmdLineModule =
  78. {
  79.   registerSelf : function(compMgr, fileSpec, location, type)
  80.   {
  81.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  82.  
  83.     compMgr.registerFactoryLocation(INSPECTOR_CMDLINE_CLSID,
  84.                                     "DOM Inspector CommandLine Service",
  85.                                     INSPECTOR_CMDLINE_CONTRACTID,
  86.                                     fileSpec,
  87.                                     location,
  88.                                     type);
  89.  
  90.     var catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  91.     catman.addCategoryEntry("command-line-argument-handlers",
  92.                             "inspector command line handler",
  93.                             INSPECTOR_CMDLINE_CONTRACTID, true, true);
  94.   },
  95.  
  96.   unregisterSelf : function(compMgr, fileSpec, location)
  97.   {
  98.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  99.  
  100.     compMgr.unregisterFactoryLocation(INSPECTOR_CMDLINE_CLSID, fileSpec);
  101.     catman = Components.classes[CATMAN_CONTRACTID].getService(nsICategoryManager);
  102.     catman.deleteCategoryEntry("command-line-argument-handlers",
  103.                                INSPECTOR_CMDLINE_CONTRACTID, true);
  104.   },
  105.  
  106.   getClassObject : function(compMgr, cid, iid)
  107.   {
  108.     if (cid.equals(INSPECTOR_CMDLINE_CLSID)) {
  109.       return InspectorCmdLineFactory;
  110.     }
  111.  
  112.     if (!iid.equals(Components.interfaces.nsIFactory)) {
  113.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  114.     }
  115.  
  116.     throw Components.results.NS_ERROR_NO_INTERFACE;
  117.   },
  118.  
  119.   canUnload : function(compMgr)
  120.   {
  121.     return true;
  122.   }
  123. };
  124.  
  125.  
  126. function NSGetModule(compMgr, fileSpec) {
  127.   return InspectorCmdLineModule;
  128. }
  129.